Skip to content

Latest commit

 

History

History
43 lines (33 loc) · 1.27 KB

list-addrange-list[t]-method.md

File metadata and controls

43 lines (33 loc) · 1.27 KB
title description ms.author ms.date ms.topic author ms.reviewer
List.AddRange(List of [T]) Method
Adds the elements of the specified collection to the end of the list.
solsen
05/14/2024
reference
SusanneWindfeldPedersen
solsen

List.AddRange(List of [T]) Method

Version: Available or changed with runtime version 1.0.

Adds the elements of the specified collection to the end of the list.

Syntax

 List.AddRange(Values: List of [T])

Parameters

List
 Type: List
An instance of the List data type.

Values
 Type: List of [T]
The collection whose elements should be added to the end of the List.

Remarks

The type T is a dynamic type. When List is of type Text then T will change to Text. When List is of type Integer, then T will change to Integer.

See Also

List Data Type
Get Started with AL
Developing Extensions